home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / nokia_readfile.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  66 lines

  1. #
  2. # This script was written by Renaud Deraison
  3. # See the Nessus Scripts License for details
  4. #
  5. # This affects Nokia Appliances
  6. #
  7. #Ref:
  8. # From: Jonas Eriksson [mailto:je@sekure.net]
  9. # Date: 23/04/2003 
  10. # To: bugtraq@securityfocus.com
  11. # Subject: Asunto: Nokia IPSO Vulnerability
  12. #
  13. #
  14. # This vuln check only works if the user entered a username and password
  15. # in the relevant field in the 'prefs' tab of nessus
  16.  
  17. if(description)
  18. {
  19.  script_id(11549); 
  20.  script_version("$Revision: 1.4 $");
  21.  
  22.  name["english"] = "readfile.tcl";
  23.  script_name(english:name["english"]);
  24.  
  25.  desc["english"] = "
  26. The remote host includes a CGI (/cgi-bin/readfile.tcl) which allows anyone
  27. to read arbitrary files on the remote host with the privileges of the HTTP 
  28. daemon (typically 'nobody').
  29.  
  30. Solution : None at this time, contact your vendor for a patch
  31. Risk factor : High";
  32.  
  33.  script_description(english:desc["english"]);
  34.  
  35.  summary["english"] = "checks for readfile.tcl";
  36.  
  37.  script_summary(english:summary["english"]);
  38.  script_category(ACT_GATHER_INFO);
  39.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison");
  40.  family["english"] = "CGI abuses";
  41.  script_family(english:family["english"]);
  42.  script_dependencie("find_service.nes", "http_version.nasl");
  43.  script_require_ports("Services/www", 80);
  44.  exit(0);
  45. }
  46.  
  47. include("http_func.inc");
  48. include("http_keepalive.inc");
  49.  
  50. port = get_http_port(default:80);
  51.  
  52.  
  53.  
  54. if(!get_port_state(port))exit(0);
  55.  
  56.  
  57. req = http_get(item:"/cgi-bin/readfile.tcl?file=/etc/master.passwd", port:port);
  58. r = http_keepalive_send_recv(port:port, data:req);
  59. if ( r == NULL ) exit(0);
  60.   
  61. if(egrep(pattern:".*root:.*:0:[01]:.*", string:r))
  62. {
  63.        security_hole(port:port);
  64. }
  65.